home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Developer CD Series 1998 November: Tool Chest
/
Dev.CD Nov 98 TC.toast
/
Sample Code
/
Snippets
/
Sound
/
Speech Recognition sample
/
_source
/
Speaking.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-11-15
|
327 b
|
16 lines
|
[
TEXT/CWIE
]
#ifndef __SPEAKING__
#include "Speaking.h"
#endif
OSErr GetNewSpeechChan (const SpeechChannel * const theSpeechChan)
{
OSErr theErr = noErr;
theErr = NewSpeechChannel (nil, theSpeechChan);
if (theErr != noErr || theSpeechChan == nil) {
DebugStr ("\pGetNewSpeechChan (NewSpeechChannel) error");
}
return theErr;
}